home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Resources / System / fat95 / english / examples next >
Text File  |  2001-03-01  |  3KB  |  153 lines

  1. /* here are some MountList examples by dedicated AMIGA users */
  2.  
  3.  
  4. /* external IOmega Zip 100 drive on A1200 Tower */
  5. /* with B1260, IOblixZII, OS3.5/Scalos/DOpus 5.82 Magellan II */
  6. /* Thanks to Gunter Hinrichsen */
  7.  
  8. ZIPC:
  9. FileSystem      = L:fat95
  10. Flags           = 1
  11. Surfaces        = 1
  12. BlocksPerTrack  = 68
  13. Reserved        = 0
  14. PreAlloc        = 0
  15. Interleave      = 0
  16. LowCyl          = 0
  17. HighCyl         = 2890
  18. Buffers         = 100
  19. BufMemType      = 1
  20. MaxTransfer     = 0x00ffffff
  21. Mask            = 0xffffffff
  22. DosType         = 0x46415401
  23. GlobVec         = -1
  24. StackSize       = 8192
  25. Mount           = 1
  26. Priority        = 10
  27. Device          = ioblixzip.device
  28. Unit            = 1
  29. #
  30.  
  31.  
  32. /* Catwesel-Zorro2 DD/HD floppy adapter */
  33. /* Thanks to Jens Schröder */
  34.  
  35. /* multidisk file system entry
  36.  *
  37.  * This mounts a logical device on catweasel unit 0 for reading and
  38.  * writing MS-DOS 9 sector Disks. Create mountlists for other units
  39.  * by changing the number behind 'UNIT  = ' to 0, 1 or 2.
  40.  */
  41.  
  42. MS4DD:
  43. FileSystem     = L:fat95
  44. Device         = multidisk.device
  45. Unit           = 0 /* Unit 0 or 1 */
  46. Flags          = 2 /* makes a PC DD-Disk driver */
  47. BlockSize      = 512
  48. Surfaces       = 2
  49. BlocksPerTrack = 9
  50. Reserved       = 1
  51. Interleave     = 0
  52. LowCyl         = 0
  53. HighCyl        = 79
  54. Buffers        = 20
  55. BufMemType     = 1
  56. StackSize      = 2048
  57. Priority       = 5
  58. GlobVec        = -1
  59. DosType        = 0x46415401
  60. Activate       = 1
  61. #
  62.  
  63. MS4HD:
  64. FileSystem     = L:fat95
  65. Device         = multidisk.device
  66. Unit           = 0 /* Unit 0 or 1 */
  67. Flags          = 3 /* makes a PC HD Disk driver */
  68. Surfaces       = 2
  69. BlocksPerTrack = 18
  70. Reserved       = 1
  71. Interleave     = 0
  72. LowCyl         = 0
  73. HighCyl        = 79
  74. Buffers        = 40
  75. Stacksize      = 2048
  76. BufMemType     = 1
  77. Priority       = 5
  78. GlobVec        = -1
  79. DosType        = 0x46415401
  80. Activate       = 1 /*=  mount = 1 */
  81. #
  82.  
  83.  
  84. /* MO (magneto-optical disk)                   */
  85. /* Fujitsu MO 640 MByte 2048 bytes/sector direct overwrite */
  86. /* Thanks to H.J.Pinkert                   */
  87.  
  88. FATMOCYB:
  89. FileSystem    = L:fat95
  90. Buffers        = 100
  91. BufMemType    = 1
  92. Device        = cybscsi.device
  93. Unit        = 2 
  94. StackSize    = 2048
  95. Priority    = 10
  96. GlobVec        = -1
  97. DosType        = 0x46415401
  98. Surfaces    = 1
  99. BlocksPerTrack    = 1
  100. LowCyl        = 0
  101. HighCyl        = 1
  102. Mask        = 0xFFFFFFFF
  103. MaxTransfer     = 0x00FFFFFF
  104. mount        = 1
  105. Activate    = 1
  106. #
  107.  
  108.  
  109. /* the DD floppy drive of my A1200 */
  110.  
  111. MS0:
  112. FileSystem    = l:fat95
  113. Device        = mfm.device
  114. Unit        = 0
  115. Flags        = 0
  116. LowCyl        = 0
  117. HighCyl        = 0
  118. Surfaces    = 0
  119. BlocksPerTrack    = 0
  120. BlockSize    = 0
  121. Buffers        = 20
  122. BufMemType    = 1
  123. BootPri        = 0
  124. Stacksize    = 2048
  125. Priority    = 5
  126. GlobVec        = -1
  127. DosType        = 0x46415401
  128. #
  129.  
  130.  
  131. /* 100 Mb NEC ZIP drive at the internal IDE port of my A1200 */
  132.  
  133. ZIP0:
  134. FileSystem    = l:fat95
  135. Device        = scsi.device
  136. Unit        = 0
  137. Flags        = 0
  138. LowCyl        = 0
  139. HighCyl        = 0
  140. Surfaces    = 1
  141. BlocksPerTrack    = 1
  142. BlockSize    = 512
  143. Buffers        = 100
  144. BufMemType    = 1
  145. BootPri        = 0
  146. Stacksize    = 4096
  147. Priority    = 5
  148. GlobVec        = -1
  149. DosType        = 0x46415401
  150. Control        = "+s"        /* testing: SCSI direct commands */
  151. #
  152.  
  153.